AtCoder Regular Contest 116 A
(工事中)
解き方
解答例
下は上記の方法で解いたときの提出結果である。また、その提出の際に提出したソースコードをその下に転記する。
code: C
int main () {
int t = 0;
int res = 0;
res = scanf("%d", &t);
for(int i = 0; i < t; i++) {
long long x = 0;
res = scanf("%lld", &x);
if (x < 3) {
if (x < 2) {
printf("Odd\n");
} else {
printf("Same\n");
}
} else {
if (x % 2 != 0) {
printf("Odd\n");
} else if (x % 4 != 0) {
printf("Same\n");
} else {
printf("Even\n");
}
}
}
return 0;
}
私の提出一覧
table: submissions_atcoder_regular_contest_116_A
提出のURL 提出時刻 結果 備考
感想